File: 01_makefile.patch

package info (click to toggle)
aa3d 1.0-8
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 100 kB
  • ctags: 3
  • sloc: ansic: 92; makefile: 10
file content (17 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- Makefile.orig	2006-04-14 18:58:07.000000000 +0200
+++ Makefile	2006-04-14 18:57:46.000000000 +0200
@@ -1,3 +1,12 @@
-aa3d: aa3d.c
+CC=gcc
+
+all: aa3d
+
+aa3d: aa3d.o 
+	$(CC) $(CFLAGS) -o aa3d aa3d.o
+
+aa3d.o: aa3d.c
+
 clean: 
-	rm -f aa3d.o aa3d
+	rm -f core aa3d.o aa3d
+