diff options
| author | Michael Stapelberg <michael@stapelberg.de> | 2010-12-06 14:41:41 +0100 |
|---|---|---|
| committer | Michael Stapelberg <michael@stapelberg.de> | 2010-12-06 14:41:41 +0100 |
| commit | efd23153d6c094c7d60833548621e13f553871e9 (patch) | |
| tree | a38ba0d389b83edc72b2406b991fd9f9f74e8285 /Makefile | |
| parent | 2043fe69d1bc3e91af346197c8207bbc190b4111 (diff) | |
| download | prozesskommunikation-efd23153d6c094c7d60833548621e13f553871e9.tar.gz prozesskommunikation-efd23153d6c094c7d60833548621e13f553871e9.tar.bz2 | |
Grundgerüst erstellt
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d08af51 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + gcc -Wall -c -o conv.o conv.c + gcc -Wall -c -o log.o log.c + gcc -Wall -c -o statistic.o statistic.c + gcc -Wall -c -o monitor.o monitor.c + gcc -Wall -c -o main.o main.c + gcc -o pk main.o conv.o log.o statistic.o monitor.o + +clean: + rm -f *.o |
