diff options
-rw-r--r-- | Makefile | 15 | ||||
-rw-r--r-- | config.mk | 6 | ||||
-rw-r--r-- | test.c | 1 |
3 files changed, 10 insertions, 12 deletions
@@ -3,13 +3,11 @@ CONFIGFILE = config.mk include $(CONFIGFILE) -all: exec-as test -exec-as: exec-as.o - $(CC) -o $@ exec-as.o $(LDFLAGS) +all: exec-as test -test: test.o - $(CC) -o $@ test.o $(LDFLAGS) +.o: + $(CC) -o $@ $< $(LDFLAGS) .c.o: $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) @@ -18,21 +16,18 @@ check: exec-as test test "$$(./exec-as ./test)" = "" test "$$(./exec-as ./test 1 2 3)" = "1,3" -install: +install: exec-as mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1" - mkdir -p -- "$(DESTDIR)$(PREFIX)/share/licenses/exec-as" cp -- exec-as "$(DESTDIR)$(PREFIX)/bin/" cp -- exec-as.1 "$(DESTDIR)$(MANPREFIX)/man1/" - cp -- LICENSE "$(DESTDIR)$(PREFIX)/share/licenses/exec-as/" uninstall: -rm -f -- "$(DESTDIR)$(PREFIX)/bin/exec-as" -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/exec-as.1" - -rm -rf -- "$(DESTDIR)$(PREFIX)/share/licenses/exec-as" clean: - -rm -f -- exec-as test *.o + -rm -f -- exec-as test *.o *.su .SUFFIXES: .SUFFIXES: .o .c @@ -1,6 +1,8 @@ -PREFIX = /usr/local +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man -CFLAGS = -std=c99 -Wall -Wextra -O2 +CC = cc + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -std=c99 -Wall -O2 LDFLAGS = -s @@ -1,6 +1,7 @@ /* See LICENSE file for copyright and license details. */ #include <stdio.h> + int main(int argc, char *argv[]) { |