diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-16 16:20:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-16 16:20:50 +0200 |
commit | 1acb6e3c8941de5715e7008503a4c8a699873a3b (patch) | |
tree | 2a53d3507cab019494dd407ea18b2eefeb4a78c4 /Makefile | |
parent | Add KNOWN_ISSUES (diff) | |
download | cg-tools-1.4.1.tar.gz cg-tools-1.4.1.tar.bz2 cg-tools-1.4.1.tar.xz |
Improve makefile and fix bug in cg-limits1.4.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,8 +32,8 @@ MAN1 = $(BIN:=.1) MAN7 = cg-tools.7 all: $(XBIN) $(OUT) -$(OBJ): $(@:.o=.c) $(HDR) -$(OUT): $(@:.out=.o) cg-base.o +$(OBJ): $(HDR) +$(OUT): cg-base.o .c.o: $(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS) |