diff options
| author | Mattias Andrée <maandree@kth.se> | 2023-07-02 20:30:24 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2023-07-02 20:30:24 +0200 | 
| commit | 45223b992bcfdbb5f0b475b42d0de0cb54c29199 (patch) | |
| tree | 34ca4d070600e51710200590670ccd1f437cdaa8 /Makefile | |
| parent | m (diff) | |
| download | xcman-7602269c2be4ab39cf3d44ef9a1b941d7a22bf93.tar.gz xcman-7602269c2be4ab39cf3d44ef9a1b941d7a22bf93.tar.bz2 xcman-7602269c2be4ab39cf3d44ef9a1b941d7a22bf93.tar.xz  | |
Improve makefile1.1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 12 | 
1 files changed, 11 insertions, 1 deletions
@@ -3,7 +3,17 @@  CONFIGFILE = config.mk  include $(CONFIGFILE) +OBJ = xcman.o +HDR = +  all: xcman +$(OBJ): $(HDR) + +xcman: $(OBJ) +	$(CC) -o $@ $(OBJ) $(LDFLAGS) + +.c.o: +	$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)  install: xcman  	mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" @@ -22,6 +32,6 @@ clean:  	-rm -f -- xcman  .SUFFIXES: -.SUFFIXES: .c +.SUFFIXES: .c .o  .PHONY: all install uninstall clean  | 
