diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-12-09 17:15:54 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-12-09 17:15:54 +0100 | 
| commit | 29830daadc341626fdafb590a3cd4f9dc755d8b2 (patch) | |
| tree | 06e35102e18ec86e6769a88fc997c39971d95064 /Makefile | |
| parent | Update man page (diff) | |
| download | vtchs-29830daadc341626fdafb590a3cd4f9dc755d8b2.tar.gz vtchs-29830daadc341626fdafb590a3cd4f9dc755d8b2.tar.bz2 vtchs-29830daadc341626fdafb590a3cd4f9dc755d8b2.tar.xz | |
Fix makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 | 
1 files changed, 5 insertions, 4 deletions
| @@ -5,8 +5,8 @@ include $(CONFIGFILE)  all: vtchs -.o: -	$(CC) -o $@ $^ $(LDFLAGS) +vtchs: vtchs.o +	$(CC) -o $@ vtchs.o $(LDFLAGS)  .c.o:  	$(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS) @@ -25,8 +25,9 @@ uninstall:  	-rm -rf -- "$(DESTDIR)$(PREFIX)/share/licenses/vtchs"  clean: -	-rm -f - vtchs *o +	-rm -f -- vtchs *.o -.SUFFIXES: .o .c.o +.SUFFIXES: +.SUFFIXES: .o .c  .PHONY: all install uninstall clean | 
