fe3aaf18733d74a0c2d72433914a414b7a103add
[reactos.git] / reactos / iface / dll / makefile
1 # $Id: makefile,v 1.2 1999/08/29 13:44:52 dwelch Exp $
2 #
3 # ReactOS Operating System
4 #
5 # Generate:
6 # - defedf
7 #
8 TARGET = defedf
9
10 BASE_CFLAGS = -I../../include
11
12 all: $(TARGET)$(EXE_POSTFIX)
13
14 $(TARGET)$(EXE_POSTFIX): $(TARGET).c
15 $(CC) -g $(TARGET).c -o $(TARGET)$(EXE_POSTFIX)
16
17 clean:
18 - $(RM) $(TARGET)$(EXE_POSTFIX)
19
20 .PHONY: all clean
21
22 include ../../rules.mak