Changeset 50558dc


Ignore:
Timestamp:
Mar 29, 2008, 5:02:05 PM (16 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
919535f
Parents:
1a43ce7
Message:
Compile zcrypt.c with -w so I don't get all these warnings in my
compile output whenever I change any headers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r9c7a701 r50558dc  
    4747HEADERS=$(GEN_H) owl.h config.h test.h
    4848
    49 %.o: %.c $(HEADERS)
    50         $(CC) -c $(CFLAGS) $< -o $@
    51 
    5249$(EXE): $(AUTOGEN) $(OBJS) owl.o libfaim
    5350        $(ATHSTATIC) $(CC) -o $(EXE) owl.o $(OBJS) $(LDFLAGS) $(LIBS)
     
    5552tester: $(AUTOGEN) $(OBJS) tester.o
    5653        $(ATHSTATIC) $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS)
     54
     55%.o: %.c $(HEADERS)
     56        $(CC) -c $(CFLAGS) $< -o $@
     57
     58# zcrypt is old crufty DES code I don't want to touch
     59# Disable all warnings when compiling it
     60zcrypt.o: zcrypt.c $(HEADERS)
     61        $(CC) -c $(CFLAGS) $< -w -o $@
    5762
    5863test: tester
     
    106111        etags $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H)
    107112
    108 $(BASE_OBJS) varstubs.h:: owl.h config.h owl_prototypes.h
    109 #$(BASE_OBJS) varstubs.h:: owl.h config.h
     113$(BASE_OBJS) varstubs.h: owl.h config.h owl_prototypes.h
    110114
    111115libfaim: libfaim/libfaim.a
Note: See TracChangeset for help on using the changeset viewer.