File: Makefile

package info (click to toggle)
subarch-select 0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 84 kB
  • sloc: cpp: 122; makefile: 10; sh: 2
file content (9 lines) | stat: -rw-r--r-- 157 bytes parent folder | download
1
2
3
4
5
6
7
8
9
LDFLAGS := $(LDFLAGS) -lcpu_features

subarch-select: main.cpp
	g++ $(CXXFLAGS) $(CPPFLAGS) -o $@ $< $(LDFLAGS)

clean:
	rm -f subarch-select

.PHONY: clean