]> mj.ucw.cz Git - umpf.git/blobdiff - Makefile
fix modified flags
[umpf.git] / Makefile
index 62772323215281a56f3313c6e364d74893bc40a5..6131357be4a3ca94b79f64cda315cf2a0effbb0d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CC=gcc
 CFLAGS=-Wall -W -Wno-pointer-sign -Wstrict-prototypes -Wmissing-prototypes -O2 -g
 LDLIBS=-lpcre
 
-umpf: umpf.c cond.tab.o int.o lex.o ham.o lists.o lock.o
+umpf: umpf.c cond.tab.o lex.o ham.o lists.o lock.o code.o int.o
        gcc -o $@ $^ $(LDLIBS)
 
 lock.o: lex.o cond.tab.o
@@ -13,12 +13,14 @@ cond.tab.o: cond.tab.c lex.o
 
 lex.o: lex.c cond.tab.c
 
-int.o: int.c
-
 ham.o: ham.c
 
+code.o: code.c
+
 lists.o: lists.c
 
+int.o: int.c
+
 cond.tab.c: cond.y
        bison -dvt cond.y