1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# List of sources
SRCS = swallow.c swallow2.c
# List of object files
OBJS = swallow.o swallow2.o
# Targets to make
EXAMPLES=swallow2
# rule to create .o files from .c files
.c.o:
$(RM) $@
$(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c $< -o $@
all: $(EXAMPLES)
# targets to build
swallow:: swallow.o
$(RM) $@ \
$(CC) -o $@ $(LDFLAGS) swallow.o $(LOADLIBES)
swallow2:: swallow2.o
$(RM) $@ \
$(CC) -o $@ $(LDFLAGS) swallow2.o $(LOADLIBES)
depend:: $(SRCS)
$(MAKEDEPEND) $(INCLUDES) $(CPPFLAGS) $(SRCS)
clean::
$(RM) $(OBJS)
$(RM) $(EXAMPLES)
distclean:: clean
$(RM) core *.out make.world *.bak *.last *.auto *.rej *.orig
#$(CP) Makefile.org Makefile
#--------------------------------------------------------------------------
# don't delete anything below this line, makedepend depends on it
#--------------------------------------------------------------------------
|