diff options
Diffstat (limited to 'x86emu/Makefile')
-rw-r--r-- | x86emu/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/x86emu/Makefile b/x86emu/Makefile index 6d4cfd6..afebf97 100644 --- a/x86emu/Makefile +++ b/x86emu/Makefile @@ -48,8 +48,7 @@ $(TARGETLIB): $(OBJS) # prefix objects with x86emu_ @for i in $? ; do cp -p $$i x86emu_$$i ; ar rv $@ x86emu_$$i || exit ; rm -f x86emu_$$i ; done -INCS = -I. -Ix86emu -Iinclude -CFLAGS += -D__DRIVER__ -DFORCE_POST -D_CEXPORT= -DNO_LONG_LONG +INCS = -I. -Ix86emu %.o: %.c $(CC) $(CFLAGS) $(INCS) -c $< -o $@ |