You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
181 B
19 lines
181 B
#
|
|
#
|
|
#
|
|
|
|
GCC=gcc
|
|
RM=rm -rf
|
|
CFLAGS=-Wall -c
|
|
LDFLAGS= -o
|
|
|
|
all:ifdmp
|
|
|
|
ifdmp:ifdmp.o
|
|
$(GCC) ifdmp.o $(LDFLAGS) ifdmp
|
|
|
|
ifdmp.o:ifdmp.c
|
|
$(GCC) $(CFLAGS) ifdmp.c
|
|
|
|
clean:
|
|
$(RM) *.o ifdmp
|
|
|