File: makefile.dos

package info (click to toggle)
wing 0.7-33
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,744 kB
  • sloc: cpp: 2,526; sh: 65; makefile: 16
file content (22 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# WING (Wing Is Not Galage) Makefile
# Authors : Adam Hiatt and Anil Shrestra

TARGET := wing.exe

CC := gcc
CFLAGS := -g -O3 -m486 
CXXFLAGS := $(CFLAGS)

OBJ := main.o
LIBS := -lalleg -lstdcxx


wing.exe : $(OBJ)
	$(CC) $(CFLAGS) $(OBJ) -o $(TARGET) $(LIBS)

main.o : main.cpp
	$(CC) $(CFLAGS) -c main.cpp 

clean:
	del *.o
	del $(TARGET)